home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Workspace / Bypass / Makefile < prev    next >
Makefile  |  1995-10-23  |  1KB  |  36 lines

  1. #####################################################################
  2. #
  3. #    Copyright 1993 Jeremy Slade.
  4. #
  5. #    You are free to use all or any parts of the LogHook project
  6. #    however you wish, just give credit where credit is due.
  7. #    The author (Jeremy Slade) shall not be held responsible
  8. #    for any damages that result out of use or misuse of any
  9. #    part of this project.
  10. #
  11. #
  12. #    Project: Bypass
  13. #
  14. #    File: Makefile
  15. #
  16. #    Description: Makefile to build the Bypass executable
  17. #
  18. #    Original Author: Jeremy Slade
  19. #
  20. #    Revision History:
  21. #        Created
  22. #            JGS Sat Apr 10 15:04:13 MDT 1993
  23. #
  24. #####################################################################
  25.  
  26. CFLAGS = -g -Wall -ObjC -arch m68k -arch sparc -arch hppa -arch i386
  27.  
  28. Bypass: Bypass_main.o BypassController.o
  29.     $(CC) $(CFLAGS) Bypass_main.o BypassController.o -o Bypass -lNeXT_s
  30.     
  31. Bypass_main.o: Bypass_main.m
  32.     $(CC) $(CFLAGS) -c Bypass_main.m -o Bypass_main.o
  33.  
  34. BypassController.o: BypassController.h BypassController.m
  35.     $(CC) $(CFLAGS) -c BypassController.m -o BypassController.o
  36.